home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 016a / already.zip / ALREADY.DOC < prev   
Text File  |  1991-10-03  |  1KB  |  31 lines

  1. About "Already.Com"
  2.  
  3. What "Already" does is it checks it's own date/time stamp (and
  4. apparently this date is also stored inside the program) against the
  5. computer's date/time and, if it finds the date is the same, it does
  6. nothing except continue returning while returning an ErrorLevel of 1.
  7. If, on the other hand, it finds that the system date is previous to
  8. its own it changes its date/time stamp (and the date that's stored
  9. internally in the program) to that of the system and then returns an
  10. ErrorLevel of 0.
  11.  
  12. You can use "Already" to check for things you need to do each day, but
  13. only once each day.  If used properly, this little program will
  14. eliminate unnecessarily repetitious tasks should you find that you have
  15. to boot your computer more than once per day.
  16.  
  17. And example of how to use this program follows:
  18.  
  19. Already
  20. If ErrorLevel 1 Goto Skip
  21. Priority   ────┐
  22. Cls            │
  23. BakNote        ├──── These things will be done only once per day.
  24. Cls            │            (Executed when ErrorLevel 0)
  25. Mode CO80  ────┘
  26. :Skip  <──────────── Items below this tag will be done at every boot.
  27. 1DirPlus                    (Executed when ErrorLevel 0 or 1)
  28.  
  29. This program came from a script file found in the October 1991 issue
  30. of PC Computing. . . Enjoy.
  31.